home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / devVMElink.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  4KB  |  117 lines

  1. /*
  2.  * devVMElink.h --
  3.  *
  4.  *    Internal declarations of interface to the Bit-3 VME
  5.  *    link driver routines.
  6.  *
  7.  * Copyright 1990 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/devVMElink.h,v 1.6 92/10/23 15:04:42 elm Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVVMELINK
  20. #define _DEVVMELINK
  21.  
  22. #include <list.h>
  23. #include <sys/param.h>
  24. #include "devTypes.h"
  25. #include "devQueue.h"
  26. #include "devBlockDevice.h"
  27. #include "dev/vmelink.h"
  28.  
  29. /*
  30.  * This is the maximum number of VME link boards in a system.
  31.  */
  32. #define DEV_VMELINK_MAX_BOARDS        16
  33.  
  34. /*
  35.  * Flags for the state word in the device driver information block.
  36.  */
  37. #define    DEV_VMELINK_STATE_DMA_IN_USE    0x1
  38. #define    DEV_VMELINK_STATE_PAGE_MODE    0x2
  39. #define    DEV_VMELINK_STATE_SAFE_COPY    0x4
  40. #define    DEV_VMELINK_STATE_NO_MAP    0x8
  41. #define    DEV_VMELINK_STATE_VME_A32    0x1000
  42.  
  43. #define    DEV_VMELINK_INTVEC0        220
  44.  
  45. #define    DEV_VMELINK_DMA_BUFSIZE_MASK    0xffffff00
  46.  
  47. #define DEV_VMELINK_MAX_TRANSFER_SIZE    (1 << 20)    /* 1 MB max */
  48.  
  49. #define DEV_VMELINK_HANDLE_MAGIC    0xface6789
  50.  
  51. typedef DevVMElinkCtrlRegs CtrlRegs;
  52. typedef DevVMElinkDmaRegs DmaRegs;
  53.  
  54. /*
  55.  * Structure that's returned to an attach.
  56.  */
  57. typedef struct DevVMElinkHandle {
  58.     DevBlockDeviceHandle blockHandle;
  59.     struct VMELinkInfo *linkInfo;
  60.     unsigned int magic;
  61. } DevVMElinkHandle;
  62.  
  63. /*
  64.  *    This is the info stored for each VME link board.
  65.  */
  66. typedef struct VMELinkInfo {
  67.     int unit;            /* unit # for this link */
  68.     unsigned int state;
  69.     CtrlRegs    *regArea;
  70.     DmaRegs    *dmaRegs;
  71.     unsigned int addrMsb;    /* MSbit of VME addresses, since offsets */
  72.                     /* into a file can only be 31 bits long */
  73.     unsigned char LocalFlags;    /* flags used to set the local and remote */
  74.     unsigned char RemoteFlags1;    /* command registers.  They are kept here */
  75.     unsigned char RemoteFlags2;    /* so the driver can fool with the link. */
  76.     int vectorNumber;
  77.     Sync_Semaphore mutex;
  78.     Address smallMap;        /* 64K window for use with window register */
  79.     int minDmaSize;        /* minimum size to DMA instead of bcopy */
  80.     unsigned int position;    /* current position for read/write */
  81.     unsigned int curAddrModifier; /* current address modifier */
  82.     char    name[40];    /* device name (from devConfig.c) */
  83.     char    semName[50];    /* semaphore name */
  84.     List_Links        reqHdr;    /* queue of requests to this link board */
  85.     DevVMElinkHandle handle;    /* handle to return to attach() */
  86.     int numAttached;        /* # of attach calls (w/o releasing) */
  87.     struct DevVMElinkReq *curReq;
  88. } VMELinkInfo;
  89.  
  90. typedef struct DevVMElinkReq {
  91.     List_Links        links;
  92.     VMELinkInfo        *linkInfo;    /* -> link info for this request */
  93.     int            operation;    /* FS_READ or FS_WRITE */
  94.     unsigned int    startAddress;    /* start addr in remote memory */
  95.     int            length;        /* length of xfer */
  96.     Address        buffer;        /* addr of local buffer */
  97.     Address        dmaSpace;    /* addr of DMA space (NIL if no DMA) */
  98.     int            dmaSize;    /* # of bytes DMAed */
  99.     DevBlockDeviceRequest *origReq;    /* -> original request block */
  100.     ReturnStatus    status;
  101.     ClientData        clientData;    /* data to pass to callback */
  102. } DevVMElinkReq;
  103.  
  104. extern ClientData DevVMElinkInit ();
  105. extern ReturnStatus DevVMElinkOpen ();
  106. extern ReturnStatus DevVMElinkRead ();
  107. extern ReturnStatus DevVMElinkWrite ();
  108. extern ReturnStatus DevVMElinkIOControl ();
  109. extern Boolean DevVMElinkIntr ();
  110. extern DevBlockDeviceHandle *DevVMElinkAttach ();
  111. extern ReturnStatus DevVMElinkRelease ();
  112. extern ReturnStatus DevVMElinkBlockIO ();
  113. extern ReturnStatus DevVMElinkBlockIOControl ();
  114. extern Address VmMach_MapInDevicePages ();
  115.  
  116. #endif /* _DEVVMELINK */
  117.